POST api/v1/dataservice/getdatarowsasync/{tableName}?fieldList[0]={fieldList[0]}&fieldList[1]={fieldList[1]}

Gets Data Rows for the provided Row Ids asynchronously. You must call

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tableName

Name of the table to search.

string

Required

fieldList

The list of fields to return. (optional). If empty, all fields will be returned

Collection of string

Required

Body Parameters

List of row id's to retrieve.

Collection of string

Request Formats

application/json, text/json

Sample:
[
  "sample string 1",
  "sample string 2"
]

application/xml, text/xml

Sample:
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <string>sample string 1</string>
  <string>sample string 2</string>
</ArrayOfstring>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'List`1'.

Response Information

Resource Description

string

Response Formats

application/json, text/json

Sample:
"sample string 1"

application/xml, text/xml

Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>

text/plain

Sample:
sample string 1